home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Programmer Plus 2007
/
Programmer-Plus-2007.iso
/
Programming
/
Student most wanted Languages
/
Turbo C v3.0
/
Tc3setup.exe
/
EXAMPLES
/
INTRO20.CPP
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1992-02-18
|
292 b
|
18 lines
// INTRO20.CPP--Example from Chapter 3, "An Introduction to C++"
#include <iostream.h>
int main()
{
int ascii_val;
for (ascii_val = 32; ascii_val < 256; ascii_val++)
{
cout << '\t' << (char)ascii_val;
if (ascii_val % 9 == 0)
cout << '\n';
}
return 0;
}